dotConnect for PostgreSQL Documentation
Devart.Data.PostgreSql Namespace / PgSqlArray Structure / PgSqlArray Constructor / PgSqlArray Constructor(Object[],PgSqlType,Int32,Int32[])
An array of objects that contains the individual elements of PgSqlArray.
The type of elements in the array.
The number of dimensions.
Limits for the dimentsions.

In This Topic
    PgSqlArray Constructor(Object[],PgSqlType,Int32,Int32[])
    In This Topic
    Initializes a new instance of the PgSqlArray class with the specified elements, elements type, and dimensions.
    Syntax
    'Declaration
     
    Public Function New( _
       ByVal elements() As Object, _
       ByVal elementType As PgSqlType, _
       ByVal rank As Integer, _
       ByVal ParamArray dimensions() As Integer _
    )
    public PgSqlArray( 
       object[] elements,
       PgSqlType elementType,
       int rank,
       params int[] dimensions
    )

    Parameters

    elements
    An array of objects that contains the individual elements of PgSqlArray.
    elementType
    The type of elements in the array.
    rank
    The number of dimensions.
    dimensions
    Limits for the dimentsions.
    See Also